Delegate
    class DelegateBasedKeyValueRepo<Key, Value>(readDelegate: ReadKeyValueRepo<Key, Value>, writeDelegate: WriteKeyValueRepo<Key, Value>) : KeyValueRepo<Key, Value> , ReadKeyValueRepo<Key, Value> , WriteKeyValueRepo<Key, Value> 
Content copied to clipboard
Constructors
Link copied to clipboard
                fun <Key, Value> DelegateBasedKeyValueRepo(readDelegate: ReadKeyValueRepo<Key, Value>, writeDelegate: WriteKeyValueRepo<Key, Value>)
Content copied to clipboard
Functions
Link copied to clipboard
                open suspend override fun keys(pagination: Pagination, reversed: Boolean): PaginationResult<Key>
Content copied to clipboard
open suspend override fun keys(    v: Value,     pagination: Pagination,     reversed: Boolean): PaginationResult<Key>
Content copied to clipboard
Link copied to clipboard
                Link copied to clipboard
                open suspend override fun values(pagination: Pagination, reversed: Boolean): PaginationResult<Value>
Content copied to clipboard